home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / TCC_DOS.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  1KB  |  46 lines

  1.  
  2. /********************************************
  3. tcc_dos.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /* Turbo C under MSDOS */
  14.  
  15. /* $Log:    tcc_dos.h,v $
  16.  * Revision 4.1  91/09/25  11:41:51  brennan
  17.  * VERSION 1.0
  18.  * 
  19.  * Revision 3.2  91/08/13  09:04:19  brennan
  20.  * VERSION .9994
  21.  * 
  22.  * Revision 3.1  91/06/07  10:38:51  brennan
  23.  * VERSION 0.995
  24.  * 
  25. */
  26.  
  27. #ifndef   CONFIG_H
  28. #define   CONFIG_H      1
  29.  
  30. #define   MSDOS                 1
  31.  
  32. #define   HAVE_PROTOS           1
  33. #define   HAVE_STDARG_H         1
  34. #define   HAVE_STDLIB_H        1
  35.  
  36. #define   TURN_OFF_FPE_TRAPS()    _control87(0x3f,0x3f)
  37.  
  38. #ifndef   HAVE_SMALL_MEMORY   /* allow large model override */
  39. #define   HAVE_SMALL_MEMORY     1
  40. #endif
  41.  
  42. #include "config/Idefault.h"
  43.  
  44.  
  45. #endif  /* CONFIG_H  */
  46.